home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / os2 / adaptor.zip / ADAPT.ZIP / adaptor / src / include / xoptions.h < prev    next >
Text File  |  1993-07-08  |  688b  |  27 lines

  1. /* list current directory */
  2.  
  3. void GenOptionsShell ();
  4.  
  5. void PopupOptions ();
  6.  
  7. static String KeyTranslation = 
  8.     "<Key>Return:    return_key()\n\
  9.     <Key>0:        insert-char()\n\
  10.     <Key>1:        insert-char()\n\
  11.     <Key>2:        insert-char()\n\
  12.     <Key>3:        insert-char()\n\
  13.     <Key>4:        insert-char()\n\
  14.     <Key>5:        insert-char()\n\
  15.     <Key>6:        insert-char()\n\
  16.     <Key>7:        insert-char()\n\
  17.     <Key>8:        insert-char()\n\
  18.     <Key>9:        insert-char()\n\
  19.     <Key>Right:    forward-character()\n\
  20.     <Key>Left:    backward-character()\n\
  21.     <Key>Delete:    delete-previous-character()\n\
  22.     <Key>BackSpace:    delete-previous-character()\n\
  23.     <Key>:        is_no_digit_or_return()";
  24.  
  25. void return_key();
  26. void is_no_digit_or_return();
  27.